home *** CD-ROM | disk | FTP | other *** search
/ Quick PC 61 / Quick PC 61.iso / I386 / WMS.CAB / slide_.js < prev    next >
Encoding:
JavaScript  |  2003-02-21  |  771 b   |  34 lines

  1. /* Copyright (c) Microsoft Corporation.  All rights reserved. */
  2. var mParent = 0;
  3. function NextSlide(){
  4.     if (mParent) mParent.NextSlide();
  5. }
  6. function ShowTip(sStr){
  7.     if (mParent) mParent.ShowTip(sStr);
  8. }
  9. function HideTip(){
  10.     if (mParent) mParent.HideTip();
  11. }
  12. function SlideSpeed(nValue){
  13.     tp1.speed = nValue;
  14.     Timer1.speed = nValue;
  15. }
  16. function SetSlideSpeed(){
  17.     if (mParent) SlideSpeed(mParent.mSpeed);
  18. }
  19. function ActiveTime(nValue){
  20.     if (mParent) mParent.ActiveTime(nValue);
  21. }
  22. function HideGlobe(){
  23.     if (mParent) mParent.HideGlobe();
  24. }
  25. function ShowGlobe(){
  26.     if (mParent) mParent.ShowGlobe();
  27. }
  28. function UpdateGlobe( sURL ){
  29.     if (mParent) mParent.UpdateGlobe( sURL );
  30. }
  31. function OpenURL( sURL ){
  32.     if (mParent) mParent.OpenURL( sURL );
  33. }
  34.